1   /************************************************************
2   *                     Copyright                            *
3   * Portions of this software are Copyright (c) 1993 - 2002, *
4   * Chad Z. Hower (Kudzu) and the Indy Pit Crew              *
5   *  - http://www.nevrona.com/Indy/                          *
6   ************************************************************/
7   package org.indy.messages;
8   
9   //import javax.mail.internet.AddressException;
10  //import javax.mail.internet.InternetAddress;
11  import org.indy.BaseComponent;
12  
13  
14  /***
15   * @todo Remove reliance on java mail and write a RFC822 parser
16   */
17  public class Message extends BaseComponent {
18    /*  private final InternetAddress address;
19          
20    public Message(String addr) throws AddressParseException{
21      try {
22        address = new InternetAddress(addr);
23      }
24      catch (AddressException ex) {
25        throw new AddressParseException(ex);
26      }
27    }
28          
29    public String getName(){
30      return address.getPersonal();
31    }*/
32  }
This page was automatically generated by Maven